home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000118_fdc@watsun.cc.columbia.edu_Tue Nov 6 11:46:56 EST 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  66 lines

  1. Article: 12937 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Kermit Connection Script
  6. Date: 6 Nov 2001 16:47:40 GMT
  7. Organization: Columbia University
  8. Lines: 49
  9. Message-ID: <9s947c$1kc$1@newsmaster.cc.columbia.edu>
  10. References: <336f652d.0111060809.1f3e3640@posting.google.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1005065260 1676 128.59.39.2 (6 Nov 2001 16:47:40 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 6 Nov 2001 16:47:40 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12937
  16.  
  17. In article <336f652d.0111060809.1f3e3640@posting.google.com>,
  18. Shifeux <shifeux@hotmail.com> wrote:
  19. : Hello, I am testing a kermit server script and a connection script to
  20. : that particular kermit server.  I am running the kermit server on an
  21. : IBM AIX4.3.3 server and I am writing the dial script on a DG-UX
  22. : machine.  The server works fine as long as I login and issue commands
  23. : manually. When I script the login however i get a "protocol error"
  24. : telling me that a "login is required".  Below is a copy of the server
  25. : log.
  26. : Transaction Log: C-Kermit 8.0.200 Beta.03, 9 Sep 2001
  27. :  IBM AIX 4.3
  28. : Tue Nov  6 10:33:04 2001
  29. : Remote system type:  UNIX
  30. : Protocol Error: Logout ignored
  31. : In the client connection script I am trying to perform the following
  32. : routine to test for files present on the server and to get them if
  33. : they exsist.
  34. : ; Scripted login/password credentials, script will check at each stage of
  35. : ; the authentication to ensure that session communications are not lost
  36. : output remote login \%l \%p\13               ; send remote login
  37. :                                              ; command to kermit server
  38. Remove "output" from this command.
  39.  
  40. : write TRANSACTION-LOG Login Successful. \13\10\13\10
  41. This should be:
  42.  
  43.   if failure exit 1 Server login failed
  44.   write TRANSACTION-LOG Login Successful. \13\10\13\10
  45.  
  46. : write TRANSACTION-LOG Sending request to download ** RESULTS **\13\10
  47. : ; Perform a query on the host server for files called test.*
  48. : ; The \v(query) variable will be 0 if no files match and
  49. : ; 1 if any files match.
  50. : output remote query kermit files(test.*)
  51. Remove "output" from this command.
  52.  
  53. And so on, you get the idea.
  54.  
  55. - Frank
  56.